From: Jim Blandy Date: Mon, 24 May 1993 15:39:31 +0000 (+0000) Subject: * timer.c (xmalloc): Include definition for this, to placate the C X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~96042 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=9ff5de0791b4ed4fb2ed11f7c27002763e974d91;p=emacs.git * timer.c (xmalloc): Include definition for this, to placate the C version of alloca. * Makefile.in (timer.o): Link with alloca.o, if it's appropriate. --- diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in index 5917a181e73..c940551231c 100644 --- a/lib-src/Makefile.in +++ b/lib-src/Makefile.in @@ -233,14 +233,15 @@ emacsclient: ${srcdir}/emacsclient.c ../src/config.h hexl: ${srcdir}/hexl.c $(CC) ${ALL_CFLAGS} ${srcdir}/hexl.c $(LOADLIBES) -o hexl +TIMEROBJS=getdate.o timer.o $(ALLOCA) getdate.o: ${srcdir}/getdate.y ../src/config.h ${YACC} ${YFLAGS} ${srcdir}/getdate.y $(CC) -I${srcdir}/../src $(ALL_CFLAGS) -c y.tab.c mv y.tab.o getdate.o timer.o: ${srcdir}/timer.c ../src/config.h $(CC) -c -I${srcdir}/../src $(ALL_CFLAGS) ${srcdir}/timer.c -timer: getdate.o timer.o - $(CC) -I${srcdir}/../src $(ALL_CFLAGS) getdate.o timer.o -o timer +timer: ${TIMEROBJS} + $(CC) -I${srcdir}/../src $(ALL_CFLAGS) ${TIMEROBJS} -o timer make-path: ${srcdir}/make-path.c $(CC) $(ALL_CFLAGS) ${srcdir}/make-path.c -o make-path